home *** CD-ROM | disk | FTP | other *** search
- #
- # (C) Tenable Network Security
- #
-
- if(description)
- {
- script_id(12087);
- script_bugtraq_id(9801);
- script_version ("$Revision: 1.2 $");
-
-
- name["english"] = "SandSurfer Cross Site Scripting Vulnerabilities";
-
- script_name(english:name["english"]);
-
- desc["english"] = "
- The remote host is running SandSurfer, a web-based time keeping application.
-
- A vulnerability has been disclosed in all versions of this software, up to
- version 1.7.0 (included) which may allow an attacker to use it to perform
- a cross site scripting attack against third party users.
-
- Solution : Upgrade to SandSurfer 1.7.1
- Risk factor : Medium";
-
-
-
-
- script_description(english:desc["english"]);
-
- summary["english"] = "Checks for SandSurfer";
-
- script_summary(english:summary["english"]);
-
- script_category(ACT_ATTACK);
-
-
- script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
- family["english"] = "CGI abuses";
- family["francais"] = "Abus de CGI";
- script_family(english:family["english"], francais:family["francais"]);
- script_dependencie("find_service.nes", "http_version.nasl");
- script_require_ports("Services/www", 80);
- exit(0);
- }
-
- # The script code starts here
-
- include("http_func.inc");
- include("http_keepalive.inc");
-
- port = get_http_port(default:80);
-
- if(!get_port_state(port))exit(0);
- if(!can_host_php(port:port))exit(0);
-
- foreach d ( cgi_dirs() )
- {
- # SandSurfer installs under $prefix/cgi-bin/login.cgi
- req = http_get(item:string(d, "/cgi-bin/login.cgi"), port:port);
- res = http_keepalive_send_recv(port:port, data:req);
- if( res == NULL ) exit(0);
- if( egrep(pattern:"SandSurfer (0\.|1\.([0-5]\.|7\.1))", string:res)){
- security_warning(port);
- exit(0);
- }
- req = http_get(item:string(d, "/login.cgi"), port:port);
- res = http_keepalive_send_recv(port:port, data:req);
- if( res == NULL ) exit(0);
- if( egrep(pattern:"SandSurfer (0\.|1\.([0-6]\.|7\.0))", string:res)){
- security_warning(port);
- exit(0);
- }
- }
-